home *** CD-ROM | disk | FTP | other *** search
/ PC Users 1998 June / Cd Pc Users 9.iso / prog / inst / ssaver / setup.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-11-29  |  2.6 KB  |  85 lines

  1. VERSION 2.00
  2. Begin Form SetupForm 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "Screen Saver"
  6.    ClientHeight    =   1215
  7.    ClientLeft      =   1095
  8.    ClientTop       =   1515
  9.    ClientWidth     =   4155
  10.    Height          =   1620
  11.    Left            =   1035
  12.    LinkTopic       =   "Form2"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   1215
  16.    ScaleWidth      =   4155
  17.    Top             =   1170
  18.    Width           =   4275
  19.    Begin Timer Timer1 
  20.       Interval        =   1
  21.       Left            =   120
  22.       Top             =   600
  23.    End
  24.    Begin TextBox txtMaxLines 
  25.       Height          =   285
  26.       Left            =   5760
  27.       MaxLength       =   3
  28.       TabIndex        =   0
  29.       Text            =   "100"
  30.       Top             =   2640
  31.       Visible         =   0   'False
  32.       Width           =   615
  33.    End
  34.    Begin CommandButton cmdOK 
  35.       Caption         =   "OK"
  36.       Default         =   -1  'True
  37.       FontBold        =   0   'False
  38.       FontItalic      =   0   'False
  39.       FontName        =   "MS Sans Serif"
  40.       FontSize        =   8.25
  41.       FontStrikethru  =   0   'False
  42.       FontUnderline   =   0   'False
  43.       Height          =   375
  44.       Left            =   3000
  45.       TabIndex        =   1
  46.       Top             =   600
  47.       Width           =   1095
  48.    End
  49.    Begin Label Label4 
  50.       Alignment       =   1  'Right Justify
  51.       BackColor       =   &H00C0C0C0&
  52.       Caption         =   "Maximum number of lines:"
  53.       Height          =   255
  54.       Left            =   4800
  55.       TabIndex        =   3
  56.       Top             =   2760
  57.       Visible         =   0   'False
  58.       Width           =   2655
  59.    End
  60.    Begin Label Label2 
  61.       Alignment       =   2  'Center
  62.       AutoSize        =   -1  'True
  63.       BackColor       =   &H00C0C0C0&
  64.       BorderStyle     =   1  'Fixed Single
  65.       Caption         =   "Example screen saver, By Jeremy1224!"
  66.       FontBold        =   -1  'True
  67.       FontItalic      =   -1  'True
  68.       FontName        =   "Times New Roman"
  69.       FontSize        =   12
  70.       FontStrikethru  =   0   'False
  71.       FontUnderline   =   -1  'True
  72.       Height          =   315
  73.       Left            =   120
  74.       TabIndex        =   2
  75.       Top             =   120
  76.       Width           =   3915
  77.    End
  78. Sub cmdOK_Click ()
  79.     Unload Me                   ' Unload Setup form
  80. End Sub
  81. Sub Form_Load ()
  82.     '-- Center the Form
  83.     CenterForm Me
  84. End Sub
  85.